home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / primcuts.zip / Load DLL at runtime / TestDLL.c < prev    next >
C/C++ Source or Header  |  1999-09-16  |  105b  |  8 lines

  1. #include <os2.h>
  2.  
  3. #pragma export(func,,1)
  4. long APIENTRY func(char chVal)
  5. {
  6.    return 100*chVal;
  7. }
  8.